home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
47215
/
47215.xpi
/
chrome
/
content
/
lib
/
strings.js
< prev
next >
Wrap
Text File
|
2009-11-22
|
419b
|
30 lines
(function()
{
//decodes all chars encoded in a string
this.decodeUTF8Recursive = function(aString)//recursion was optimized
{
while(aString.indexOf('%') != -1)
{
try
{
aString = decodeURIComponent(aString);
}
catch(e)
{
try
{
aString = decodeURI(aString);
}
catch(e)
{
return aString;
}
}
}
return aString;
};
return null;
}).apply(URLtoTabTitle);